home *** CD-ROM | disk | FTP | other *** search
/ isnet Internet / Isnet Internet CD.iso / prog / hiz / 09 / 09.exe / adynware.exe / perl / lib / File / Path.pm < prev    next >
Encoding:
Perl POD Document  |  1999-12-28  |  5.6 KB  |  211 lines

  1. package File::Path;
  2.  
  3. =head1 NAME
  4.  
  5. File::Path - create or remove a series of directories
  6.  
  7. =head1 SYNOPSIS
  8.  
  9. C<use File::Path>
  10.  
  11. C<mkpath(['/foo/bar/baz', 'blurfl/quux'], 1, 0711);>
  12.  
  13. C<rmtree(['foo/bar/baz', 'blurfl/quux'], 1, 1);>
  14.  
  15. =head1 DESCRIPTION
  16.  
  17. The C<mkpath> function provides a convenient way to create directories, even
  18. if your C<mkdir> kernel call won't create more than one level of directory at
  19. a time.  C<mkpath> takes three arguments:
  20.  
  21. =over 4
  22.  
  23. =item *
  24.  
  25. the name of the path to create, or a reference
  26. to a list of paths to create,
  27.  
  28. =item *
  29.  
  30. a boolean value, which if TRUE will cause C<mkpath>
  31. to print the name of each directory as it is created
  32. (defaults to FALSE), and
  33.  
  34. =item *
  35.  
  36. the numeric mode to use when creating the directories
  37. (defaults to 0777)
  38.  
  39. =back
  40.  
  41. It returns a list of all directories (including intermediates, determined
  42. using the Unix '/' separator) created.
  43.  
  44. Similarly, the C<rmtree> function provides a convenient way to delete a
  45. subtree from the directory structure, much like the Unix command C<rm -r>.
  46. C<rmtree> takes three arguments:
  47.  
  48. =over 4
  49.  
  50. =item *
  51.  
  52. the root of the subtree to delete, or a reference to
  53. a list of roots.  All of the files and directories
  54. below each root, as well as the roots themselves,
  55. will be deleted.
  56.  
  57. =item *
  58.  
  59. a boolean value, which if TRUE will cause C<rmtree> to
  60. print a message each time it examines a file, giving the
  61. name of the file, and indicating whether it's using C<rmdir>
  62. or C<unlink> to remove it, or that it's skipping it.
  63. (defaults to FALSE)
  64.  
  65. =item *
  66.  
  67. a boolean value, which if TRUE will cause C<rmtree> to
  68. skip any files to which you do not have delete access
  69. (if running under VMS) or write access (if running
  70. under another OS).  This will change in the future when
  71. a criterion for 'delete permission' under OSs other
  72. than VMS is settled.  (defaults to FALSE)
  73.  
  74. =back
  75.  
  76. It returns the number of files successfully deleted.  Symlinks are
  77. treated as ordinary files.
  78.  
  79. B<NOTE:> If the third parameter is not TRUE, C<rmtree> is B<unsecure>
  80. in the face of failure or interruption.  Files and directories which
  81. were not deleted may be left with permissions reset to allow world
  82. read and write access.  Note also that the occurrence of errors in
  83. rmtree can be determined I<only> by trapping diagnostic messages
  84. using C<$SIG{__WARN__}>; it is not apparent from the return value.
  85. Therefore, you must be extremely careful about using C<rmtree($foo,$bar,0>
  86. in situations where security is an issue.
  87.  
  88. =head1 AUTHORS
  89.  
  90. Tim Bunce <F<Tim.Bunce@ig.co.uk>> and
  91. Charles Bailey <F<bailey@genetics.upenn.edu>>
  92.  
  93. =head1 REVISION
  94.  
  95. Current $VERSION is 1.04.
  96.  
  97. =cut
  98.  
  99. use Carp;
  100. use File::Basename ();
  101. use DirHandle ();
  102. use Exporter ();
  103. use strict;
  104.  
  105. use vars qw( $VERSION @ISA @EXPORT );
  106. $VERSION = "1.04";
  107. @ISA = qw( Exporter );
  108. @EXPORT = qw( mkpath rmtree );
  109.  
  110. my $Is_VMS = $^O eq 'VMS';
  111.  
  112. my $force_writeable = ($^O eq 'os2' || $^O eq 'msdos' || $^O eq 'MSWin32'
  113.                || $^O eq 'amigaos');
  114.  
  115. sub mkpath {
  116.     my($paths, $verbose, $mode) = @_;
  117.     local($")="/";
  118.     $mode = 0777 unless defined($mode);
  119.     $paths = [$paths] unless ref $paths;
  120.     my(@created,$path);
  121.     foreach $path (@$paths) {
  122.     next if -d $path;
  123.     $path = VMS::Filespec::unixify($path) if $Is_VMS;
  124.     my $parent = File::Basename::dirname($path);
  125.     push(@created,mkpath($parent, $verbose, $mode)) unless (-d $parent);
  126.     print "mkdir $path\n" if $verbose;
  127.     unless (mkdir($path,$mode)) {
  128.         croak "mkdir $path: $!" unless -d $path;
  129.     }
  130.     push(@created, $path);
  131.     }
  132.     @created;
  133. }
  134.  
  135. sub rmtree {
  136.     my($roots, $verbose, $safe) = @_;
  137.     my(@files);
  138.     my($count) = 0;
  139.     $roots = [$roots] unless ref $roots;
  140.     $verbose ||= 0;
  141.     $safe ||= 0;
  142.  
  143.     my($root);
  144.     foreach $root (@{$roots}) {
  145.     $root =~ s#/$##;
  146.     (undef, undef, my $rp) = lstat $root or next;
  147.     $rp &= 07777;    # don't forget setuid, setgid, sticky bits
  148.     if ( -d _ ) {
  149.         chmod(0777, ($Is_VMS ? VMS::Filespec::fileify($root) : $root))
  150.           or carp "Can't make directory $root read+writeable: $!"
  151.         unless $safe;
  152.  
  153.         my $d = DirHandle->new($root)
  154.           or carp "Can't read $root: $!";
  155.         @files = $d->read;
  156.         $d->close;
  157.  
  158.         @files = reverse @files if $Is_VMS;
  159.         ($root = VMS::Filespec::unixify($root)) =~ s#\.dir$## if $Is_VMS;
  160.         @files = map("$root/$_", grep $_!~/^\.{1,2}$/,@files);
  161.         $count += rmtree(\@files,$verbose,$safe);
  162.         if ($safe &&
  163.         ($Is_VMS ? !&VMS::Filespec::candelete($root) : !-w $root)) {
  164.         print "skipped $root\n" if $verbose;
  165.         next;
  166.         }
  167.         chmod 0777, $root
  168.           or carp "Can't make directory $root writeable: $!"
  169.         if $force_writeable;
  170.         print "rmdir $root\n" if $verbose;
  171.         if (rmdir $root) {
  172.         ++$count;
  173.         }
  174.         else {
  175.         carp "Can't remove directory $root: $!";
  176.         chmod($rp, ($Is_VMS ? VMS::Filespec::fileify($root) : $root))
  177.             or carp("and can't restore permissions to "
  178.                     . sprintf("0%o",$rp) . "\n");
  179.         }
  180.     }
  181.     else { 
  182.         if ($safe &&
  183.         ($Is_VMS ? !&VMS::Filespec::candelete($root) : !-w $root)) {
  184.         print "skipped $root\n" if $verbose;
  185.         next;
  186.         }
  187.         chmod 0666, $root
  188.           or carp "Can't make file $root writeable: $!"
  189.         if $force_writeable;
  190.         print "unlink $root\n" if $verbose;
  191.         while (-e $root || -l $root) {
  192.         if (unlink $root) {
  193.             ++$count;
  194.         }
  195.         else {
  196.             carp "Can't unlink file $root: $!";
  197.             if ($force_writeable) {
  198.             chmod $rp, $root
  199.                 or carp("and can't restore permissions to "
  200.                         . sprintf("0%o",$rp) . "\n");
  201.             }
  202.         }
  203.         }
  204.     }
  205.     }
  206.  
  207.     $count;
  208. }
  209.  
  210. 1;
  211.